home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / netprog.zip / NETPROG.TAR / xnsecho / Makefile next >
Makefile  |  1989-12-17  |  180b  |  17 lines

  1. #
  2.  
  3. CFLAGS    = -O
  4. OBJ    = xnsecho.o
  5. MYLIB    = ../libnet.a
  6.  
  7. all:    xnsecho
  8.  
  9. #
  10.  
  11. xnsecho: $(OBJ) $(MYLIB)
  12.      cc $(CFLAGS) -o $@ $(OBJ) $(MYLIB)
  13.  
  14. #
  15. clean:
  16.     -rm -f *.o core a.out temp*.* xnsecho
  17.